table.IS_MARKED Function

Syntax

Result_Flag as L = Is_Marked()

Description

Is the current record Marked.

Discussion

The <TBL>.IS_MARKED() method returns .T. (TRUE) if the current record is marked.

Example

This script checks if the current record is marked.

dim tbl as P
tbl = table.current()
status = tbl.is_marked()

See Also